home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1995 #5 & #6 / Amiga Plus CD - 1995 - No. 5 and 6.iso / pd / serien / purity / nr.42 / includes3v1 / includes3v1.lha / Prefs / IControl.i < prev    next >
Text File  |  1994-12-04  |  1KB  |  42 lines

  1.  {  File format for intuition control preferences }
  2.  
  3. {$I "Include:Libraries/IffParse.i"}
  4.  
  5.  
  6. {***************************************************************************}
  7.  
  8. const
  9.  ID_ICTL = 1229149260;
  10.  
  11. Type
  12.  IControlPrefs = Record
  13.     ic_Reserved     : Array[0..3] Of Integer;       { System reserved              }
  14.     ic_TimeOut      : WORD;                         { Verify timeout               }
  15.     ic_MetaDrag     : WORD;                         { Meta drag mouse event        }
  16.     ic_Flags        : Integer;                      { IControl flags (see below)   }
  17.     ic_WBtoFront,                                   { CKey: WB to front            }
  18.     ic_FrontToBack,                                 { CKey: front screen to back   }
  19.     ic_ReqTrue,                                     { CKey: Requester TRUE         }
  20.     ic_ReqFalse     : Byte;                         { CKey: Requester FALSE        }
  21.  end;
  22.  IControlPrefsPtr = ^IControlPrefs;
  23.  
  24. const
  25. { flags for IControlPrefs.ic_Flags }
  26.  ICB_COERCE_COLORS = 0;
  27.  ICB_COERCE_LACE   = 1;
  28.  ICB_STRGAD_FILTER = 2;
  29.  ICB_MENUSNAP      = 3;
  30.  ICB_MODEPROMOTE   = 4;
  31.  
  32.  ICF_COERCE_COLORS = 1;
  33.  ICF_COERCE_LACE   = 2;
  34.  ICF_STRGAD_FILTER = 4;
  35.  ICF_MENUSNAP      = 8;
  36.  ICF_MODEPROMOTE   = 16;
  37.  
  38.  
  39. {***************************************************************************}
  40.  
  41.  
  42.